* {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    list-style-type: none;
    color: black;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
}

:root {
    --red: #BA3B46;
    --white: rgba(0, 0, 0, 0.08);
    --green: #495E57;
    --black: #1B1B1B;
    --shadow: 0px 0px 10px 10px rgba(0,0,0,5%);
}

.red-button {
    background-color: var(--red);
    border: 1px solid var(--red);
    padding: 15px;
    display: inline-block;
    border-radius: 3px;
    color: white;
    transition: all ease .5s;
    font-weight: bold;
}

.red-white-button {
    border: 1px solid var(--red);
    padding: 15px;
    display: inline-block;
    border-radius: 3px;
    color: var(--red);
    transition: all ease .5s;
    font-weight: bold;
}

.green-button {
    background-color: var(--green);
    border: 1px solid var(--green);
    padding: 15px;
    display: inline-block;
    border-radius: 3px;
    transition: all ease .5s;
    font-weight: bold;
    color: white;
}

.red-button:hover {
    filter: brightness(1.1);
}

.green-button:hover {
    filter: brightness(1.2);
}

.red-white-button:hover {
    background-color: var(--red);
    color: white;
}

p {
    line-height: 30px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 40px;
}

.container {
    width: 1140px;
    height: auto;
    margin: 0 auto;
}

.container-double {
    width: 1140px;
    height: auto;
    margin: 0 auto;
    display: flex;
}

.container-header {
    width: 20%;
    height: auto;
}

.container-header h2 {
    position: sticky;
    top: 20px;
    font-size: 40px;
}

.container-content {
    width: 80%;
    height: auto;
}

section {
    width: 100%;
    height: auto;
}

.span-section-red {
    background-color: var(--red);
    border-radius: 10px;
    padding: 5px 10px;
    color: white;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 20px;
    border: 1px solid var(--red);
}

.span-section-red-white {
    border-radius: 10px;
    padding: 5px 10px;
    color: var(--red);
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
    border: 1px solid var(--red);
    line-height: 20px;
}

.span-section-white {
    background-color: white;
    border-radius: 10px;
    padding: 5px 10px;
    color: var(--red);
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 20px;
}
